type runtime/pprof.labelMap

13 uses

	runtime/pprof (current package)
		label.go#L23: func labelValue(ctx context.Context) labelMap {
		label.go#L24: 	labels, _ := ctx.Value(labelContextKey{}).(*labelMap)
		label.go#L26: 		return labelMap{}
		label.go#L34: type labelMap struct {
		label.go#L40: func (l *labelMap) String() string {
		label.go#L58: 	return context.WithValue(ctx, labelContextKey{}, &labelMap{mergeLabelSets(parentLabels.Set, labels)})
		pprof.go#L429: func (x stackProfile) Label(i int) *labelMap { return nil }
		pprof.go#L438: 	Label(i int) *labelMap
		pprof.go#L494: 	key := func(stk []uintptr, lbls *labelMap) string {
		pprof.go#L869: func (p *runtimeProfile) Label(i int) *labelMap { return (*labelMap)(p.labels[i]) }
		proto.go#L370: 				for _, lbl := range (*labelMap)(e.tag).Set.List {
		runtime.go#L42: 	ctxLabels, _ := ctx.Value(labelContextKey{}).(*labelMap)